home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / Premiere 4.2 SDK r3 Mac / Examples / Projects / Wipe / Wipe.r < prev   
Text File  |  1996-01-25  |  2KB  |  47 lines

  1. //========================================================================================
  2. //
  3. // Wipe.r - Resources for the basic wipe transition.
  4. //
  5. // Written by Randy Ubillos and Bryan K. "Beaker" Ressler.
  6. //
  7. // Copyright ⌐ 1993-96, Adobe Systems Incorporated, all rights reserved worldwide.
  8. //
  9. // Version    1.00    10/20/93    Original version.
  10. // Version    1.01    9/12/94        Updated for 4.0.
  11. // Version  1.02    10/8/95     Updated for 4.2 and CW7.
  12. //
  13. //========================================================================================
  14.  
  15. //========================================================================================
  16. // Includes
  17. //========================================================================================
  18. #include "PremiereBasic.r"
  19.  
  20. //========================================================================================
  21. // Transition description
  22. //========================================================================================
  23. resource 'TEXT' (1000, "Description") {
  24.     "A moving wipe reveals image B under image A."
  25. };
  26.  
  27. //========================================================================================
  28. // Effect version
  29. //========================================================================================
  30. resource 'FXvs' (1000, "Version") {
  31.     1
  32. };
  33.  
  34. //========================================================================================
  35. // Transition options
  36. //========================================================================================
  37. resource 'Fopt' (1000) {
  38.     0b11111111,        // Valid mask (all)
  39.     0b00001000,        // Initial values
  40.     No,                // In Pairs?
  41.     Yes,            // Exclusive?
  42.     Yes,            // Has Reverse?
  43.     Yes,            // Has Edges?
  44.     No,                // Has Start?
  45.     No                // Has End?
  46. };
  47.